home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
mtgrap1c
/
ellipse.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-29
|
877b
|
34 lines
/*****************************************************
; Filename : ellipse.h
;
; Date : 3-7-94
; Mod. Date : 29-7-94
;
; Info : Obtained from Ferraro
;****************************************************/
#ifndef ELLIPSE_H
#define ELLIPSE_H
#ifdef __cplusplus
extern "C" {
#endif
//Tim Kientzle's ellipse code
void mtEllipse(int x,int y,int a,int b,int color);
void mtFillEllipse(int x,int y,int a,int b,int color);
void mtCEllipse(int x,int y,int a,int b,int color);
void mtCFillEllipse(int x,int y,int a,int b,int color);
//Richard Wilton's Alternatives
void mtEllipseRW(int x,int y, int a, int b,int color);
void mtFillEllipseRW(int x,int y, int a, int b, int color);
void mtCEllipseRW(int x,int y, int a, int b,int color);
void mtCFillEllipseRW(int x,int y, int a, int b, int color);
#ifdef __cplusplus
}
#endif
#endif ELLIPSE_H